HTML Web Page Examples (with Source Code)

您所在的位置:网站首页 how to create additional webpages on your html website HTML Web Page Examples (with Source Code)

HTML Web Page Examples (with Source Code)

2023-04-22 21:34| 来源: 网络整理| 查看: 265

HTML Web Page Examples with Source Code

In this article, we are going to see some HTML web page examples with source code. We will also see some of the key points to learn how to create these web pages.

HTML Web Page Example 1

This is an example of a simple HTML web page that shows the profile of a professional camel.

Here is how the camel profile is designed in HTML:

Container - The complete HTML web page is wrapped in a container. The container is a div element with the class container.

Header - Inside the container, we have a header element that contains the logo and the navigation menu.

Aside - Aside contains the profile picture and other navigational links.

Main - The main element contains the profile information. Like the name, the career, the skills, the contact form, etc.

Footer - The footer contains copyright information.

Here is the complete code of the camel profile:

Example 1

Mr. Camel @import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap'); body { margin: 0; box-sizing: border-box; } .container { line-height: 150%; } .header { display: flex; justify-content: space-between; align-items: center; padding: 15px; background-color: #e9e9e9; } .header h1 { color: #222222; font-size: 30px; font-family: 'Pacifico', cursive; } .header .social a { padding: 0 5px; color: #222222; } .left { float: left; width: 180px; margin: 0; padding: 1em; } .content { margin-left: 190px; border-left: 1px solid #d4d4d4; padding: 1em; overflow: hidden; } ul { list-style-type: none; margin: 0; padding: 0; font-family: sans-serif; } li a { display: block; color: #000; padding: 8px 16px; text-decoration: none; } li a.active { background-color: #84e4e2; color: white; } li a:hover:not(.active) { background-color: #29292a; color: white; } table { font-family: arial, sans-serif; border-collapse: collapse; width: 100%; margin: 30px 0; } td, th { border: 1px solid #dddddd; padding: 8px; } tr:nth-child(1) { background-color: #84e4e2; color: white; } tr td i.fas { display: block; font-size: 35px; text-align: center; } .footer { padding: 55px 20px; background-color: #2e3550; color: white; text-align: center; } Mr. Camel Home Career Contact About

"Do something important in life. I convert green grass to code."- Mr Camel

About Me

I don't look like some handsome horse, but I am a real desert king. I can survive days without water.

My Career

I work as a web developer for a company that makes websites for camel businesses.

How Can I Help You? SKILL 1 SKILL 2 SKILL 3 Cleaning kaktus in your backyard Storing some fat for you Taking you through the desert Email: Mobile: Enter your message © Copyright Mr. Camel ▶ Try it

Here is the result of the code above:

HTML web page example 1

Stay Ahead, Learn More

Sample HTML code for homepage How to use CSS in HTML HTML code for registration form with validation HTML WebPage Example 2

This is the second example of an HTML web page. This is a simple error 404 page which is shown when the user tries to access a page that does not exist.

This is a very simple webpage that shows the error 404 page on the screen and gives a link to return to the homepage.

To design an error 404 page you need to use the following steps:

Create a div element that covers the whole page set height: 100vh. Give it a background image that suits the 404 error. Style your basic text and link elements with CSS.

Example 2

Error 404 page body { margin: 0; box-sizing: border-box; } .container { height: 100vh; display: flex; justify-content: center; align-items: center; flex-direction: column; background: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, .1)), url('https://images.unsplash.com/photo-1595624871930-6e8537998592?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=871&q=80'); background-size: cover; background-position: center; background-repeat: no-repeat; } h1 { font-size: 10rem; color: #fff; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; } h2 { font-size: 2rem; color: #fff; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; } p { font-size: 1.5rem; color: #fff; font-weight: 700; margin-bottom: 1rem; } a { padding: 15px 20px; background: #52caee; font-size: 1rem; text-decoration: none; color: #333333; border-radius: .25rem; box-shadow: 0 0 20px rgba(255, 255, 255, 0.808) } 404 Page not found

The page you are looking for does not exist.

Visit Homepage

▶ Try it

Here is the result of the code in example 2.

HTML web page example 2 HTML Code Example 3 (Offer Page)

In this HTML code example we will create offer page. This is a simple newsletter signup page.

Here is the list of steps to create a newsletter signup page:

First, we need to create the HTML structure of the page. We will use the tag to wrap the content of the page. Then, we will create two sections: one for the intro and one for the sign-up form. Next, we will style the page using CSS. We will use the display: flex property to align the content of the page. We will also use the min-height property to make sure that the page is always fully visible. Then, we will style the intro section. Next, we will style the sign-up section. Finally, we will style the form. Look at the complete code below to see how we did it.

Example 3

Sample HTML Code - NewsLetter Form @import url("https://fonts.googleapis.com/css2?family=Poppins:[email protected];500;600;700&display=swap"); body { display: flex; justify-content: center; padding: 3rem 0; font-family: "Poppins", sans-serif; font-size: 1rem; color: white; background-color: #ff7a7a; } main { max-width: 350px; display: flex; flex-direction: column; align-items: center; } .intro { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; width: 100%; margin-bottom: 3rem; } .title { padding: 1rem; font-size: 1.75rem; } .sign-up { width: 100%; } .sign-up-para { padding: 1rem 5rem; margin-bottom: 1.75rem; border-radius: 0.8rem; box-shadow: 0 8px 0px rgba(0 0 0/0.15); background-color: #7138cc; text-align: center; } .sign-up-form { display: flex; flex-direction: column; align-items: center; padding: 1.2rem; border-radius: 0.8rem; box-shadow: 0 8px 0px rgba(0 0 0/0.15); color: #b9b6d3; background-color: white; } .form-input { width: 100%; margin-bottom: 1em; position: relative; } .form-input span { position: absolute; top: 10%; right: 0; padding: 0 0.65em; border-radius: 50%; background-color: #ff7a7a; color: white; display: none; } .form-input.warning span { display: inline-block; } .form-input input { width: calc(100% - 20px); padding: 10px; border: 2px solid rgba(185, 182, 211, 0.25); border-radius: 0.5em; font-weight: 600; color: #3e3c49; } .form-input input:focus { outline: none; border: 2px solid #b9b6d3; } .form-input.warning input { border: 2px solid #ff7a7a; } .form-input p { margin: 0.2em 0.75em 0 0; display: none; font-size: 0.75rem; text-align: right; font-style: italic; color: #ff7a7a; } .form-input.warning p { display: block; } .submit-btn { cursor: pointer; width: 100%; padding: 1em; margin-bottom: 1em; border: none; border-bottom: 5px solid #31bf81; border-radius: 0.5em; background-color: #38cc8c; color: white; font-weight: 600; text-transform: uppercase; } .submit-btn:hover { background-color: #5dd5a1; } .form-term { margin-bottom: 0.75em; font-size: 0.8rem; text-align: center; } .form-term span { font-weight: 700; color: #ff7a7a; } @media (min-width: 768px) { body { align-items: center; min-height: 100vh; } main { max-width: 100vw; flex-direction: row; justify-content: center; } .intro { align-items: flex-start; text-align: left; width: 45%; margin-right: 1rem; } .title { padding: 0; margin-bottom: 2rem; font-size: 3rem; line-height: 1.25em; } .sign-up { width: 45%; } .sign-up-form { padding: 1.75rem; } .sign-up-form input { padding-left: 1.5em; } } Black Friday Deals

Get up to 50% off on all our products and services. Hurry up, the offer ends in 24 hours.

!

First name cannot be empty

!

Last name cannot be empty

!

Looks like this is not an email

!

Password cannot be empty

By clicking the button, you are agreeing to our Terms and Services

▶ Try it

Here is the result of the code in example 3.

HTML web page example 3 HTML Code Example 4

In the fourth example, we are going to create a testimonial page that shows the reviews of the customers along with their profile pictures, name and designation.

The basic idea will be to create HTML section first and then styling it with CSS.

The reviews and all its details will be stored in an array and then we will loop through the array to display the reviews.

Here is the complete code for the testimonial page.

Complete HTML code for the testimonial page

Testimonial Slider @import url('https://fonts.googleapis.com/css2?family=Nunito:[email protected];700&display=swap'); * { margin: 0; padding: 0; box-sizing: border-box; } body { color: #000; font-family: 'Nunito', sans-serif; } .testimonial { height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; padding-bottom: 5rem; } h1 { margin: 20px 0; } .line { height: 2px; width: 6rem; background-color: #e26c4f; margin-bottom: calc(3rem + 2vmin); } .arrow-wrapper { position: relative; width: 70%; border-radius: 2rem; box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; overflow: hidden; place-items: center; } .review-wrap { display: flex; flex-direction: column; justify-content: center; align-items: center; padding-top: calc(2rem + 1vmin); width: 100%; } #imgBox { border-radius: 50%; width: calc(6rem + 4vmin); height: calc(6rem + 4vmin); position: relative; box-shadow: 5px -3px #e26c4f; background-size: cover; margin-bottom: calc(0.7rem + 0.5vmin); } #name { margin-bottom: calc(0.7rem + 0.5vmin); font-size: calc(1rem + 0.5vmin); letter-spacing: calc(0.1rem + 0.1vmin); font-weight: bold; } #profession { font-size: calc(0.8rem + 0.3vmin); margin-bottom: calc(0.7rem + 0.5vmin); color: #e26c4f; } #description { font-size: calc(0.8rem + 0.3vmin); width: 70%; max-width: 40rem; text-align: center; margin-bottom: calc(1.4rem + 1vmin); color: rgb(92, 92, 92); line-height: 2rem; } .arrow { width: calc(1.4rem + 0.6vmin); height: calc(1.4rem + 0.6vmin); border: solid #e26c4f; border-width: 0 calc(0.5rem + 0.2vmin) calc(0.5rem + 0.2vmin) 0; cursor: pointer; transition: transform 0.3s; } .arrow:hover { transition: 0.3s; transform: scale(1.15); } .left-arrow-wrap { position: absolute; top: 50%; left: 5%; transform: rotate(135deg); } .right-arrow-wrap { position: absolute; top: 50%; right: 5%; transform: rotate(-45deg); } @media screen and (max-width: 900px) { .testimonial { width: 100%; } } Our Reviews const reviewWrap = document.getElementById("reviewWrap"); const leftArrow = document.querySelector(".left-arrow-wrap .arrow"); const rightArrow = document.querySelector(".right-arrow-wrap .arrow"); const imgBox = document.getElementById("imgBox"); const name = document.getElementById("name"); const profession = document.getElementById("profession"); const description = document.getElementById("description"); let people = [{ photo: 'url("https://cdn.pixabay.com/photo/2015/03/03/18/58/woman-657753_960_720.jpg")', name: "Natalie Grey", profession: "Software Engineer", description: "While the lovely valley teems with vapour around me, and the meridian sun strikes the upper surface of the impenetrable foliage of my trees, and but a few stray gleams steal into the inner sanctuary, I throw myself down among the tall grass by the trickling stream; and, as I lie close to the earth, a thousand unknown plants are noticed by me:" }, { photo: "url('https://cdn.pixabay.com/photo/2018/06/27/07/45/college-student-3500990_960_720.jpg')", name: "Dylan Smith", profession: "Student", description: "I'm baby woke mlkshk wolf bitters live-edge blue bottle, hammock freegan copper mug whatever cold-pressed. Bitters hashtag tumeric sriracha hot chicken gentrify portland. Dreamcatcher neutra irony." }, { photo: "url('https://cdn.pixabay.com/photo/2015/01/08/18/30/man-593372__340.jpg')", name: "Branson Cook", profession: "Web Developer", description: "Hello, I'm a web developer. I have been working as a web developer for 5 years. I have worked in many companies and I have worked as a freelancer. I have worked in a team and I have worked alone. I have worked in a big company and I have worked in a small one." }, { photo: "url('https://cdn.pixabay.com/photo/2012/10/26/02/12/actor-63082_960_720.jpg')", name: "Julius Grohn", profession: "Designer", description: "Working as a designer is a very interesting job. You can work in a team or alone, you can work in a company or as a freelancer. You can work in an office or at home. You can work in a big company or in a small one. You can work in a big city or in a small town." } ]; // set the first person imgBox.style.backgroundImage = people[0].photo; name.innerText = people[0].name; profession.innerText = people[0].profession; description.innerText = people[0].description; let currentPerson = 0; //Select the side where you want to slide function slide(side, personNumber) { let reviewWrapWidth = reviewWrap.offsetWidth + "px"; let descriptionHeight = description.offsetHeight + "px"; //(+ or -) let side1symbol = side === "left" ? "" : "-"; let side2symbol = side === "left" ? "-" : ""; setTimeout(() => { imgBox.style.backgroundImage = people[personNumber].photo; }, 0); setTimeout(() => { description.style.height = descriptionHeight; }, 100); setTimeout(() => { name.innerText = people[personNumber].name; }, 200); setTimeout(() => { profession.innerText = people[personNumber].profession; }, 300); setTimeout(() => { description.innerText = people[personNumber].description; }, 400); } function setNextCardLeft() { if (currentPerson === 3) { currentPerson = 0; slide("left", currentPerson); } else { currentPerson++; } slide("left", currentPerson); } function setNextCardRight() { if (currentPerson === 0) { currentPerson = 3; slide("right", currentPerson); } else { currentPerson--; } slide("right", currentPerson); } leftArrow.addEventListener("click", setNextCardLeft); rightArrow.addEventListener("click", setNextCardRight); ▶ Try it

Here is the output of the above HTML code for testimonials:

HTML web page example 4 Ezoicreport this ad Conclusion

This brief guide includes HTML web page examples with source code. We have learned how to create a basic HTML web page with 2 different examples. We have also learned how to create a basic CSS style sheet and how to use it on our HTML web page.

If you want a detailed explanation of a portfolio site then visit the HTML code for homepage.



【本文地址】


今日新闻


推荐新闻


CopyRight 2018-2019 办公设备维修网 版权所有 豫ICP备15022753号-3